home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 176-200 / disk_179 / excption / boolean.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  2KB  |  48 lines

  1. /**************************************************************************/
  2. /*                                                                        */
  3. /*                              BOOLEAN HANDLER                           */
  4. /*               ==========================================               */
  5. /*                                                                        */
  6. /*                                                                        */
  7. /*  MODULE      : Boolean                                                 */
  8. /*  NOM         : Boolean.h                                               */
  9. /*  FONCTION    :                                                         */
  10. /*                                                                        */
  11. /*  RESPONSABLE : HEWES Gerald                                            */
  12. /*  TEL         : 33 (1) 46 24 20 27                                      */
  13. /*                                                                        */
  14. /**************************************************************************/
  15.  
  16. /**************************************************************************/
  17. /*                                                                        */
  18. /* 880000 HEW First Released Version    V 0.10                            */
  19. /*                                                                        */
  20. /**************************************************************************/
  21.  
  22. #ifndef BOOLEAN_H
  23. #define BOOLEAN_H
  24.  
  25. #include <exec/types.h>
  26.  
  27. typedef unsigned int   BOOLEAN;
  28.  
  29. #ifndef TRUE
  30. #define TRUE 1
  31. #endif
  32.  
  33. #ifndef FALSE
  34. #define FALSE 0
  35. #endif
  36.  
  37. #define VRAI 1
  38. #define FAUX 0
  39. #define NULLE 0
  40.  
  41. #define forever for(;;)
  42.  
  43. #endif
  44.  
  45. /*************************  CIVILISATION ENDS HERE  ***********************/
  46.  
  47.  
  48.